Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This pull request includes significant updates to dependencies, refactoring of the main application setup, and removal of several plugins. The most important changes involve updating dependencies in
package.json
, refactoringsrc/app.js
to use the latestprobot
setup, and removing multiple plugins that are no longer needed.Note: I couldn't figure out how to run the bot locally to ensure it will start.
Fixes #205
Dependency Updates:
moment
to version^2.30.1
,moment-timezone
to^0.5.46
,probot
to^13.4.1
, and added@octokit/rest
as a new dependency. (package.json
: package.jsonL25-R37)jest
to version^29.7.0
andnock
to^13.5.6
. (package.json
: package.jsonL25-R37)22.x
. (package.json
: package.jsonL58-R59)Application Setup Refactoring:
src/app.js
to use the latestProbot
setup, including new type definitions and updated initialization code. (src/app.js
: [1] [2] [3]Plugin Removals:
auto-closer
plugin entirely. (src/plugins/auto-closer/index.js
: src/plugins/auto-closer/index.jsL1-L218)check-unit-test
plugin entirely. (src/plugins/check-unit-test/index.js
: src/plugins/check-unit-test/index.jsL1-L82)duplicate-comments
plugin entirely. (src/plugins/duplicate-comments/index.js
: src/plugins/duplicate-comments/index.jsL1-L132)src/plugins/index.js
to reflect the removal of the aforementioned plugins. (src/plugins/index.js
: src/plugins/index.jsL16-L21)Minor Refactoring:
commit-message
plugin for consistency with the newProbot
setup. (src/plugins/commit-message/index.js
: [1] [2] [3] [4] [5] [6]